'宣言
Public Function OrderBy(Of TKey)( _ ByVal keySelector As System.Linq.Expressions.Expression(Of Func(Of T,TKey)) _ ) As OrderedView(Of T)
public OrderedView<T> OrderBy<TKey>( System.Linq.Expressions.Expression<Func<T,TKey>> keySelector )
パラメータ
- keySelector
- 要素のキーを抽出する関数。
型パラメータ
- TKey
- keySelectorによって返されるキーの型。
戻り値の型
要素がキーに従ってソートされるビュー。